body {
  font-family: 'Segoe UI', sans-serif;
 background: linear-gradient(135deg, #0f2027, #174124, #000000);
  background-attachment: fixed;
  background-size: cover;
  padding: 20px;
  color: #ffffff;
  text-align: center;
}

header {
  margin-bottom: 30px;
}

.glass-title {
  background: rgba(255, 255, 255, 0.034);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 15px 25px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  display: inline-block;
}

.timer-container {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.timer-box {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 30px;
  width: 100%;
  max-width: 600px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

.timer-box h3 {
  margin-bottom: 20px;
  font-size: 24px;
}

#countdown-display {
  font-size: 28px;
  font-weight: bold;
  color: #fff;
}









.countdown-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.countdown-box {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 30px;
  width: 100%;
  max-width: 600px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
  text-align: center;
}

.countdown-box h3 {
  margin-bottom: 20px;
  font-size: 24px;
}

.input-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.input-row input {
  width: 80px;
  padding: 10px;
  font-size: 16px;
  border-radius: 8px;
  border: none;
  text-align: center;
}

.button-row {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.button-row button {
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: bold;
  color: white;
}

.button-row button:first-child {
  background-color: #3fa65b;
}

.button-row button:last-child {
  background-color: #dc3545;
}

#countdown-display {
  font-size: 28px;
  font-weight: bold;
  color: #fff;
}



.title-icon {
  width: 65px;       /* Controls horizontal size */
  height: 65px;      /* Controls vertical size */
  margin-right: 10px; /* Optional spacing between icon and text */
  vertical-align: middle; /* Keeps it aligned with the text */
}


/* 🔄 Fade-In Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.fade-container {
  animation: fadeIn 0.8s ease-out forwards;
}
